home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / demosrc / timesrc / pdoschar.rt < prev    next >
Encoding:
Text File  |  1994-02-16  |  381 b   |  16 lines

  1. public  _putdoschar
  2. ;░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
  3. ; Put a charater to DOS
  4. ; In:
  5. ;   AL - character
  6. ;░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
  7. _putdoschar:
  8.         push eax
  9.         mov v86r_dl,al
  10.         mov v86r_ah,2
  11.         mov al,21h
  12.         int 33h
  13.         pop eax
  14.         ret
  15.  
  16.